home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / libol / xalloc.h < prev   
C/C++ Source or Header  |  2005-10-16  |  3KB  |  109 lines

  1. /***************************************************************************
  2.  *
  3.  * Copyright (c) 1998-1999 Niels M÷ller
  4.  * Copyright (c) 1999 BalaBit Computing
  5.  * 
  6.  * This program is free software; you can redistribute it and/or modify
  7.  * it under the terms of the GNU General Public License as published by
  8.  * the Free Software Foundation; either version 2 of the License, or
  9.  * (at your option) any later version.
  10.  *
  11.  * This program is distributed in the hope that it will be useful,
  12.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.  * GNU General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU General Public License
  17.  * along with this program; if not, write to the Free Software
  18.  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  19.  *
  20.  * $Id: xalloc.h,v 1.3 1999/07/10 13:23:09 bazsi Exp $
  21.  *
  22.  ***************************************************************************/
  23.  
  24. #ifndef __XALLOC_H_INCLUDED
  25. #define __XALLOC_H_INCLUDED
  26.  
  27. #define OL_ALLOC_HEAP    0
  28. #define OL_ALLOC_STATIC    1
  29. #define OL_ALLOC_STACK    2
  30.  
  31. #define STATIC_HEADER { NULL, NULL, OL_ALLOC_STATIC, 0, 0 }
  32. #define STACK_HEADER  { NULL, NULL, OL_ALLOC_STACK, 0, 0 }
  33.  
  34. struct ol_object *ol_object_alloc(struct ol_class *class);
  35.  
  36. void ol_object_free(struct ol_object *o);
  37.  
  38. /* NOTE: This won't work for if there are strings or other instance
  39.  * variables that can't be shared. */
  40. struct ol_object *ol_object_clone(struct ol_object *o);
  41.  
  42. void *ol_space_alloc(size_t size);
  43. void ol_space_free(void *p);
  44.  
  45. #ifdef DEBUG_ALLOC
  46.  
  47. #define ol_free debug_free
  48. #define ol_malloc debug_malloc
  49.  
  50. struct malloc_entry {
  51.     void *ptr;
  52.     int size;
  53.     struct malloc_entry *next;
  54. };
  55.  
  56. extern struct malloc_entry *first_malloc;
  57.  
  58. void debug_free(void *p);
  59.  
  60. struct ol_object *ol_object_check(struct ol_class *class,
  61.                     struct ol_object *instance);
  62. struct ol_object *ol_object_check_subtype(struct ol_class *class,
  63.                         struct ol_object *instance);
  64.  
  65. #define CHECK_TYPE(c, i) \
  66.   ol_object_check(&CLASS(c), (struct ol_object *) (i))
  67. #define CHECK_SUBTYPE(c, i) \
  68.   ol_object_check_subtype(&CLASS(c), (struct ol_object *) (i))
  69.  
  70. #define CAST(class, var, o) \
  71.   struct class *(var) = (struct class *) CHECK_TYPE(class, o)
  72.  
  73. #define CAST_SUBTYPE(class, var, o) \
  74.   struct class *(var) = (struct class *) CHECK_SUBTYPE(class, o)
  75.    
  76.  
  77. #else   /* !DEBUG_ALLOC */
  78.  
  79. #define ol_free free
  80. #define ol_malloc malloc
  81.  
  82.  
  83. #define CHECK_TYPE(c, o)
  84. #define CHECK_SUBTYPE(c, o)
  85.      
  86. #define CAST(class, var, o) \
  87.    struct class *(var) = (struct class *) (o)
  88.  
  89. #define CAST_SUBTYPE(class, var, o) CAST(class, var, o)
  90.  
  91. #endif  /* !DEBUG_ALLOC */
  92.  
  93. #define NEW(class, var) \
  94.   struct class *(var) = (struct class *) ol_object_alloc(&CLASS(class))
  95. #define NEW_SPACE(x) ((x) = ol_space_alloc(sizeof(*(x))))
  96.  
  97. #define CLONE(class, i) \
  98.   ((struct class *) ol_object_clone(CHECK_TYPE(class, (i))))
  99.  
  100. #define CLONED(class, var, i) \
  101.   struct class *(var) = CLONE(class, i)
  102.      
  103. #define KILL(x) gc_kill((struct ol_object *) (x))
  104.  
  105. void *xalloc(size_t size);
  106.  
  107.  
  108. #endif
  109.